home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / print / hpgl2ps.zip / END_DRAW.C < prev    next >
C/C++ Source or Header  |  1989-08-08  |  224b  |  16 lines

  1. /* end_draw.c */
  2. #include "defn.h"
  3.  
  4. end_draw()
  5. {
  6.     if (DRAW_FLAG)
  7.     {
  8.     if (lastXmove == absX && lastYmove == absY)
  9.         printf("closepath\n");
  10.  
  11.     printf("stroke\n");
  12.     DRAW_FLAG = 0;
  13.     }
  14.     dcount = 0;
  15. }
  16.